GetWindow (user32)
Last changed: -73.246.221.57

.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern IntPtr GetWindow(IntPtr hWnd, uint uCmd);

enum GetWindow_Cmd {
  First = 0,
  Last  = 1,
  Next  = 2,
  Prev  = 3,
  Owner = 4,
  Child = 5
}

VB Signature:

Declare Auto Function GetWindow Lib "user32.dll" ( _
   ByVal hWnd As IntPtr, ByVal uCmd As UInt32) As IntPtr

Notes:

None

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation
GetWindow on MSDN